-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
an event to providing standards for push payment methods #223
Conversation
I suggest that functionality that is needed for payment apps be specified in the payment app specification. We should map out the flow of this first in section 4 of the payment app spec, Ian |
@ianbjacobs said:
I disagree, the requirements here will impact what is passed in the request (and this PR is for a change to the PaymentRequest API). That said, the features required here are not required for all payment methods so we need to figure out if they SHOULD be put in the PaymentRequest API or belong only in the Payment Method-specific Data. @rvm4 said:
I don't think that is the case. My understanding of the groups position is that we are waiting for more information on what is required so we can decide if this should be put in the PaymentRequest directly or if it is sufficient to use payment method specific data. This PR suggests that an event be fired when the payment app is selected by the user which would allow the website to trace the payment later but there are a few issues:
There was a lot of interest in solving this at the F2F. Perhaps the best thing to do here is pull together a group of interested parties to first document the possible flows so we can analyze these for possible failure scenarios. Once we have this we can effectively design mitigations. |
@adrianhopebailie wrote: "I disagree, the requirements here will impact what is passed in the request (and this PR is for a change to the PaymentRequest API)" Right now the payment apps api spec is defined in terms of conformance for user agents. User agents are going to have to change their behavior to implement the spec, including their implementation of the payment request api. For instance, they will need to "hand off control" at a particular place in the payment request API algorithm, then receive it again. Therefore, I think it's ok to define all payment app-related behavior in the payment app spec, and this COULD involve changes to payment request API. Ian |
Why would we define changes to another API in the PaymentApps API spec if the API in question is still being defined ESPECIALLY if we haven't even decided if the changes are limited to Payment App-related behaviour? |
@adrianhopebailie wrote: "Why would we define changes to another API in the PaymentApps API spec if the API in question is still being defined ESPECIALLY if we haven't even decided if the changes are limited to Payment App-related behaviour?"
Ian |
So this PR was meant to spur discussion. It is far from complete. It is apparent that there is nowhere near consensus, so I would second creating a dedicated group to tackle this issue and come up with a variety of alternatives. |
@rvm4 that was the general feeling on yesterday's call. We're going to start the discussion via the list or some issues and then can either raise on one of our weekly calls or have a dedicated call to discuss. |
It seems like the details for checking push payment status would be specific to the payment method. That doesn't mean there can't be some generalized mechanism for communicating those details, but it may be better as a URL to the payee's site that the payment app can contact or something to that effect. I think that would be more resilient. I'm also not keen on revealing payment app information to the payee through the Payment Request API. |
We are closing as obsolete in favor of transaction-id. |
In the working group meeting we have started to explore push payment methods. Historically we have punted on considerations for these kinds of apps/methods, but I think we can no longer ignore it. This pull request is not complete, but I wanted to use it to spur discussion around this and work to drive it to completion in combination with a pull request on Payment App.
Why add this functionality? From a merchant's perspective, one of the major values of the payment request api in a pull payment method scenario is that many payment apps may resolve to the same or very similar payment methods, like a tokenized credit card. However, with push payment this is not the case due to the fact that there are proprietary systems and myriad differences in processing payment regardless of the fact that the end result is currency exchanging hands. In order to further incentivize merchant adoption and to get ahead of the problem of one payment app per payment method, I think adding failure resolution (and payouts which are not captured here) to the spec will prove beneficial.